home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / qbbs / wixfix.zip / WIXFIX.DOC next >
Text File  |  1992-04-03  |  4KB  |  116 lines

  1.  
  2.  
  3.  
  4.  
  5.                     WixFix V1.0 for NetRunner (tm)
  6.              Copyright (C) 1992 by T. White and A. Haxton
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.                              Introduction
  15.                              ------------
  16.           WixFix is a small file to allow ANSI users to use NetRunner
  17. on an RA (or compatible) system in color.  A little juggling is needed
  18. with the setup to get it to work, but it is possible.
  19.  
  20.                              How to do it
  21.                              ------------
  22.           It's very easy to use WixFix, merely have it in the directory
  23. where NetRunner calls your Dorinfo1.Def and run it.  It creates a new
  24. file called Dorinfo2.Def which you should have NetRunner call instead.
  25. A sample batch file for multi lines would be:
  26.  
  27.         @ECHO OFF
  28.         CD \OLGAMES\NETRUN
  29.         IF %1==1 GOTO LINE1
  30.         IF %1==2 GOTO LINE2
  31.         GOTO END
  32.  
  33.         :LINE1
  34.             COPY D:\RA\LINE1\DORINFO1.DEF
  35.             WIXFIX
  36.             NETRUN D:\OLGAMES\NETRUN\DORINFO2.DEF
  37.             DEL CONTROL.DAT
  38.             CD\RA\LINE1
  39.             GOTO END
  40.  
  41.         :LINE2
  42.             COPY D:\RA\LINE2\DORINFO1.DEF
  43.             WIXFIX
  44.             NETRUN D:\OLGAMES\NETRUN\DORINFO2.DEF
  45.             DEL CONTROL.DAT
  46.             CD\RA\LINE2
  47.             GOTO END
  48.  
  49.         :END
  50.  
  51. For a single line, try:
  52.  
  53.         @ECHO OFF
  54.         CD \OLGAMES\NETRUN
  55.         COPY D:\RA\LINE1\DORINFO1.DEF
  56.         WIXFIX
  57.         NETRUN D:\OLGAMES\NETRUN\DORINFO2.DEF
  58.         CD\RA\
  59.  
  60.  
  61.                              How it works
  62.                              ------------
  63.  
  64.           When NetRunner reads the Dorinfo1.Def file, on line 10 (the
  65. graphics emulation line) it reads 0 and 1 as ASCII, 2 and 3 as ANSI.
  66. The actual structure is: 0=ASCII, 1=ANSI, 2=AVATAR, and 3=ANSI & AVATAR.
  67. What WixFix does is it reads Line 10 of the Dorinfo file, and if it's a
  68. 1 it turns it into a 2 and saves the whole thing as Dorinfo2.Def without
  69. ever actually touching the Dorinfo1.Def (so that everything is safe.)
  70.  
  71.                              Registration
  72.                              ------------
  73.  
  74.           If you find that WixFix works, and enjoy using it, please send
  75. a small contribution of say, around $5, to:
  76.  
  77.                               Tommy White
  78.                              Rt2, Box 299-B
  79.                           Stilwell, Ok. 74960
  80.  
  81.           You can usually get ahold of one of us on Xenon BBS: (918)683-
  82. 3317 (Line 1: 2400 Baud) or (918)683-3133 (Line 2: 14,400 Baud).
  83.  
  84.  
  85.                              Legal Notice
  86.                              ------------
  87.  
  88.           You use WixFix at your own risk.  We are not resposible for
  89. any damages to you, your computer, or any hardware or software that
  90. even comes near it.
  91.  
  92.                               Copyrights
  93.                               ----------
  94.  
  95.      NetRunner is Copyright 1992 Seattle Cybertechnologies
  96.      RA and RemoteAccess are Copyright (C) 1991 Andrew Milner and
  97.                                            Continental Software
  98.  
  99.                               In Closing
  100.                               ----------
  101.           In closing, I think that NetRunner is a very cool game, and I
  102. encourage everyone to call up there local BBS, and play it for a few
  103. hours, or demand that their Sysop get it if he hasn't already.  Thanks,
  104.  
  105.                                    Anthony Haxton and Tommy White
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.